/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 625%;
}

body {
  font-size: .16rem;
  font-family: sans-serif;
  color: #2e3233;
  background-color: #ffffff;
}
@media only screen and (max-width: 1169px) {
  body.nav-on-left.overflow-hidden {
    overflow: hidden;
  }
}
#small,
#medium,
#large{
  cursor: pointer;
}

a {
  color: #69aa6f;
  text-decoration: none;
}

img {
  /* make images responsive */
  max-width: 100%;
}

input {
  font-family: sans-serif;
  font-size: .16rem;
}

input[type="search"]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content, .cd-main-header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.cd-main-content, .cd-main-header {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
@media only screen and (max-width: 1169px) {
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-main-content.nav-is-visible, .nav-on-left .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}

.cd-main-content {
  background: #ffff;
  min-height: 100vh;
  z-index: 2;
}

.cd-main-header {
  height: 50px;
  background: #ffffff;
  z-index: 3;
}
.nav-is-fixed .cd-main-header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1170px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1170px) {
  .cd-main-header {
    height: 80px;
  }
  .cd-main-header:after {
    content: "";
    display: table;
    clear: both;
  }
}

.cd-logo {
  position: absolute;
  top: 0;
  left: 5%;
}
.cd-logo img {
  display: block;
}
@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-logo {
    left: auto;
    right: 5%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-logo {
    top: 0;
    left: 4em;
  }
}

.cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 3px;
  right: 5%;
}
.cd-header-buttons li {
  display: inline-block;
}
@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-header-buttons {
    right: auto;
    left: 5%;
  }
  .nav-on-left .cd-header-buttons li {
    float: right;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header-buttons {
    top: 18px;
    right: .4em;
  }
}

.cd-search-trigger, .cd-nav-trigger {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  /* hide text */
  color: transparent;
  z-index: 3;
}

.cd-search-trigger::before, .cd-search-trigger::after {
  /* search icon */
  content: '';
  position: absolute;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-search-trigger::before {
  /* lens */
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #2e3233;
}
.cd-search-trigger::after {
  /* handle */
  height: 3px;
  width: 8px;
  background: #2e3233;
  bottom: 14px;
  right: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span {
  /* container for the X icon */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cd-search-trigger span::before, .cd-search-trigger span::after {
  /* close icon */
  content: '';
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 22px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -11px;
  background: #2e3233;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before, .cd-search-trigger.search-is-visible::after {
  /* hide search icon */
  opacity: 0;
}
.cd-search-trigger.search-is-visible span::before, .cd-search-trigger.search-is-visible span::after {
  /* show close icon */
  opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #2e3233;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(46, 50, 51, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #2e3233;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-primary-nav, .cd-primary-nav ul {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #2e3233;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-primary-nav a, .cd-primary-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #3a3f40;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.cd-primary-nav.is-hidden, .cd-primary-nav ul.is-hidden {
  /* secondary navigations hidden by default */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-primary-nav.moves-out > li > a, .cd-primary-nav ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1169px) {
  .nav-on-left .cd-primary-nav, .nav-on-left .cd-primary-nav ul {
    right: auto;
    left: 0;
  }
}
.cd-primary-nav .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #69aa6f;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item, .cd-primary-nav .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item h3, .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item p {
  color: #2e3233;
  font-size: .13rem;
  /* hide description on small devices */
  display: none;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
@media only screen and (max-width: 1169px) {
  .cd-primary-nav {
    /* by default .cd-primary-nav is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    -moz-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }
  .cd-primary-nav.nav-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-primary-nav {
    position: static;
    padding: 0 5% 0 0;
    height: auto;
    width: auto;
    float: right;
    overflow: visible;
    background: transparent;
  }
  .cd-primary-nav:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-primary-nav.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }
  .cd-primary-nav ul.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-primary-nav ul.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav > li {
    float: left;
    margin-left: .1rem;
  }
  .cd-primary-nav > li > a {
    /* main navigation buttons style */
    position: relative;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding: 0 10px;
    color: #2e3233;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }
  .cd-primary-nav > li > a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav > li > a.selected {
    color: #69aa6f;
    box-shadow: inset 0 -2px 0 #69aa6f;
  }
  .cd-primary-nav .go-back, .cd-primary-nav .see-all {
    display: none;
  }
  .cd-primary-nav .cd-secondary-nav, .cd-primary-nav .cd-nav-gallery, .cd-primary-nav .cd-nav-icons {
    /* dropdown menu style */
    position: absolute;
    top: 80px;
    width: 100vw;
    background: #ffffff;
    padding: 48px 64px 130px;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-primary-nav .cd-secondary-nav:after, .cd-primary-nav .cd-nav-gallery:after, .cd-primary-nav .cd-nav-icons:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-primary-nav .cd-secondary-nav.is-hidden, .cd-primary-nav .cd-nav-gallery.is-hidden, .cd-primary-nav .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all, .cd-primary-nav .cd-nav-gallery > .see-all, .cd-primary-nav .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a, .cd-primary-nav .cd-nav-gallery > .see-all a, .cd-primary-nav .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: .22rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
    -moz-transition: color 0.2s, background 0.2s, border 0.2s;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a:hover, .cd-primary-nav .cd-nav-gallery > .see-all a:hover, .cd-primary-nav .cd-nav-icons > .see-all a:hover {
    background: #2e3233;
    border-color: #2e3233;
    color: #ffffff;
  }
  .cd-primary-nav .cd-secondary-nav > li {
    /* change the height according to your needs - you can even set height: auto */
    height: 340px;
    /* here you set the number of columns - use width percentage */
    width: 23%;
    float: left;
    margin-right: 2.66%;
    border-right: 1px solid #e2e3df;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cd-primary-nav .cd-secondary-nav > li:nth-child(4n+2) {
    /* +2 because we have 2 list items with display:none */
    margin-right: 0;
    border-right: none;
  }
  .cd-primary-nav .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #69aa6f;
    font-weight: bold;
    font-size: .16rem;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 0;
    color: #2e3233;
    border-bottom: none;
    font-size: .14rem;
  }
  .cd-primary-nav .cd-secondary-nav a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .cd-primary-nav .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
    color: transparent;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .see-all {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-primary-nav .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }
  .cd-primary-nav .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
    padding: 0 .4em;
  }
  .cd-primary-nav .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }
  .cd-primary-nav .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item p {
    display: block;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #464c4e;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1170px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #c9cbc4;
  }
  .has-children > a:hover::before, .has-children > a:hover::after, .go-back a:hover::before, .go-back a:hover::after {
    background: #69aa6f;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

.cd-primary-nav .go-back a {
  padding-left: 40px;
}
.cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

@media only screen and (min-width: 1170px) {
  .has-children > a::before, .has-children > a::after {
    right: 15%;
  }

  .cd-primary-nav > .has-children > a {
    /* main navigation arrows on larger devices */
    padding-right: 30px !important;
  }
  .cd-primary-nav > .has-children > a::before, .cd-primary-nav > .has-children > a::after {
    width: 9px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #c9cbc4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
  }
  .cd-primary-nav > .has-children > a::before {
    right: 12px;
  }
  .cd-primary-nav > .has-children > a::after {
    right: 7px;
  }
  .cd-primary-nav > .has-children > a.selected::before, .cd-primary-nav > .has-children > a.selected::after {
    width: 14px;
  }
  .cd-primary-nav > .has-children > a.selected::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-primary-nav > .has-children > a.selected::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cd-secondary-nav > .has-children > a::before, .cd-secondary-nav > .has-children > a::after {
    /* remove arrows on secondary nav titles */
    display: none;
  }

  .cd-primary-nav .go-back a {
    padding-left: 20px;
  }
  .cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
    left: 1px;
  }
}
.cd-search {
  position: absolute;
  height: 50px;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search form {
  height: 100%;
  width: 100%;
}
.cd-search input {
  border-radius: 0;
  border: none;
  background: #ffffff;
  height: 100%;
  width: 100%;
  padding: 0 5%;
  box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input::-webkit-input-placeholder {
  color: #c9cbc4;
}
.cd-search input::-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-ms-input-placeholder {
  color: #c9cbc4;
}
.cd-search input:focus {
  outline: none;
}
.cd-search.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.nav-is-fixed .cd-search {
  position: fixed;
}
@media only screen and (min-width: 1170px) {
  .cd-search {
    height: 1.2rem;
    top: .8px;
  }
  .cd-search input {
    padding: 0 .2em;
    font-size: .32rem;
    font-weight: 300;
  }
}

.cd-overlay {
  /* shadow layer visible when navigation is active */
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(105, 170, 111, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

/* -------------------------------- 

support for no js 

-------------------------------- */
.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}

.no-js .cd-search {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1170px) {
  .no-js .cd-primary-nav {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
    top: 0;
    right: 1.5rem;
    padding: 0;
  }

  .no-js .nav-is-fixed .cd-primary-nav {
    position: fixed;
  }
}
@media only screen and (max-width: 768px) {
  .cd-logo {
    left: 2%;
  }
  .cd-logo img{
    max-height: 28px;
    margin-top: 10px!important;
  }
}

.incontent{
  width: 90%;
  margin: 0 5%;
  overflow: hidden;
  *zoom:1;
}

/*banner*/
.swiper-banner .swiper-pagination span{
  width: 15px;
  height: 15px;
  background:#fff;
  opacity: 1;
}
.swiper-banner .swiper-pagination span.swiper-pagination-bullet-active{
  background: #36a390;
}

/*inyewu*/
#inyewu{
  width: 100%;
  overflow: hidden;
  *zoom:1;
}
#inyewu .one_div,#inyewu .two_div,#inyewu .three_div{
  padding: 0;
  margin: 0;
}
#inyewu .one_div{
  background-color: #efefef;
  padding: 2.3% 5%;
}
#inyewu .one_div h1{
  font-size: .26rem;
  color: #b0b0b0;
  font-weight: normal;
  margin-top: .05rem;
  margin-bottom: .1rem;
  
}
#inyewu .one_div h2{
  font-size: .26rem;
  color: #b0b0b0;
  font-weight: bold;
  
}
#inyewu .one_div h3{
  color: #333;
  margin-top: .2rem;
  

  font-size: .45rem;
  line-height: .6rem;
  font-weight: bold;
}
#inyewu .one_div h3:after{
  display: block;
  content: '';
  width: .5rem;
  height: 2px;
  background: #39ae9a;
  margin-top: .2rem;
}

/*#inyewu .one_div h2{
  font-size:.45rem;
  line-height: .6rem;
  font-weight: bold;
}
#inyewu .one_div h2:after{
  content: '';
  display: block;
  width: 1rem;
  height: 2px;
  background-color: #36a390;
}*/
#inyewu .one_div p:nth-of-type(1){
  margin-top: .3rem;
  font-size: .14rem;
  color: #999999;
  line-height: .3rem;
}
#inyewu .one_div p:nth-of-type(2){
  margin-top: .3rem;
  font-size: .17rem;
  color: #666;
  line-height: .3rem;
}
#inyewu .two_div a{
  color: #333;
}
#inyewu .two_div .four_yewu,#inyewu .three_div .four_yewu{
  padding:6.55%  5%;
  text-align: center;
  line-height: .5rem;
}
#inyewu .two_div .four_yewu:hover,#inyewu .three_div .four_yewu:hover{
  background-color:  #36a390;
  color: #fff;
  transition: all 0.6s;
}
#inyewu .four_yewu:hover a{
  color: #fff;
 }
@media only screen and (max-width: 768px) {
  #inyewu .one_div h2{
  font-size:.32rem;
  line-height: .6rem;
  font-weight: bold;
}
  #inyewu .two_div img,#inyewu .three_div img{
    width: .8rem;
  }
}

/*innews*/
#innews{
  width: 100%;
  overflow: hidden;
  *zoom:1;
}
#innews #innewsTab{
  background: url(../images/index_21.jpg) top center no-repeat;
  width: 100%;
  height: 2.60rem;
  background-size: 100% 100%;
  text-align: center;
}
#innews #innewsTab h1{
  font-size: .45rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.5rem;
}
#innews #innewsTab li{
  display: inline-block;
  float: none;
}
#innews #innewsTab li a{
  background: #fff;
  border:1px #fff solid;
  border-radius: .2rem;
  color: #36a390;
  padding: .05rem .3rem;
}
#innews #innewsTab li.active a{
  background: #36a390;
  color: #fff;
  border:1px #36a390 solid;
}
#innews #innewsContent{
  width: 90%;
  margin: 5%;
  overflow: hidden;
}
#innews #innewsContent dl{
  width: 100%;
  padding: .165rem 0;
  border-bottom: 1px #efefef solid;
  overflow: hidden;
}
#innews #innewsContent dl:last-child{
  border-bottom: 0;
}
#innews #innewsContent dl:hover{
  background: #36a390;
  transition: all 0.6s;
}
#innews #innewsContent dl:hover *{
  color: #fff;
}
#innews #innewsContent dl dt{
  width: 13%;
  float: left;
  padding-left: 1%;
}
#innews #innewsContent dl dt span{
  display: block;
  text-align: right;
  font-size: .16rem;
  color: #dddddd;
}
#innews #innewsContent dl dt time{
  font-size: .32rem;
  color: #dddddd;
  font-weight: bold;
}
#innews #innewsContent dl dd{
  width: 85%;
  float: right;
}
#innews #innewsContent dl dd a{
  display: block;
  font-size: .18rem;
  color: #333333;
  margin-bottom: .12rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#innews #innewsContent dl dd p{
  color: #888;
  font-size: .14rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#innews #innewsContent dl dd a:hover{
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  #innews #innewsTab h1{
    font-size: .32rem;
  }
  #innews #innewsContent dl dt{
    width: 16%;
  }
  #innews #innewsContent dl dd{
    width: 80%;
  }
  #innews #innewsContent dl dt span{
    display: block;
    text-align: right;
    font-size: .14rem;
    color: #dddddd;
  }
  #innews #innewsContent dl dt time{
    font-size: .18rem;
    color: #dddddd;
    font-weight: bold;
  }
}

/*invideo*/
#invideo{
  background: #000;
  width: 100%;
  overflow: hidden;
  *zoom:1;
}
#invideo video{
  width: 100%;
  height: 400px;
}


/*inrespons*/
#inrespons{
  width: 100%;
  background: #efefef;
  overflow: hidden;
  *zoom:1;
}
#inrespons .incontent{
  width: 90%;
  margin: 0 5%;
}
#inrespons .incontent .inrespons_content_title{
  color: #333;
  font-size: .45rem;
  font-weight: bold;
  padding: .6rem 0;
  text-align: center;
}
#inrespons .incontent ul li a{
  display: block;
  height: .95rem;
  width: 100%;
  background: #fff;
  border-radius: .1rem;
  text-align: center;
  font-size: .2rem;
  color: #666;
  line-height: .95rem;
  margin-bottom: .3rem;
  transition: all 0.6s ease-in-out 0s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#inrespons .incontent ul li a:hover{
  background: url(../images/index_26.png) top center no-repeat;
  background-size: 100% 100%;
  color: #fff;
  text-decoration: none;
  transition:all 0.3s ease-in-out 0s;

}
#inrespons .incontent .inrespons_content_more{
  display: block;
  background: #fff;
  width: 2.2rem;
  height: .5rem;
  border:1px #e3e3e3 solid;
  border-radius: .5rem;
  color: #36a390;
  font-size: .16rem;
  line-height: .5rem;
  text-align: center;
  margin: .3rem auto;
}
#inrespons .incontent .inrespons_content_more:hover{
  background: #36a390;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  #inrespons .incontent .inrespons_content_title{
    color: #333;
    font-size: .32rem;
    font-weight: bold;
    padding: .6rem 0;
    text-align: center;
  }
  #inrespons .incontent ul li a{
    line-height: .6rem;
  }
}


/*indevelop*/
#indevelop{
  background: url(../images/index_29.png) bottom center no-repeat;
  width: 100%;
  height: 7.4rem;

  overflow: hidden;
  *zoom:1;
}
#indevelop .incontent_title{
  color: #333;
  font-size: .45rem;
  font-weight: bold;
  padding: .75rem 0;
  text-align: center;
}
.swiper-timeline{
  padding-top: .3rem;
  min-height: 7rem;
}
#indevelop .swiper-timeline .swiper-slide{
  height: 3.8rem;
  position: relative;
}
#indevelop .swiper-timeline .swiper-slide:nth-of-type(even){
  margin-top: .9rem;
}
#indevelop .swiper-timeline .swiper-slide .indevelop_content{
  background: #fff;
  width: 80%;
  margin: 0 10%;
  padding: 2% 2% 4%;
  height: 2rem;
  border-radius: .1rem;
  box-shadow: 0 0 3px rgba(0,0,0,.12);
  overflow: hidden;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_content h4{
  font-size: .14rem;
  color: #333;
  line-height: .3rem;
  text-align: center;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_content .indevelop_contentss{
  width: 80%;
  margin: 0 auto;
  font-size: .12rem;
  color: #666;
  line-height: .18rem;
  overflow: hidden;text-overflow: ellipsis;
  white-space: nowrap;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_line{
  margin: .2rem 0;
  border-bottom: 1px #c9c9c9 solid;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_line span{
  display: block;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  border:1px #f5d77c solid;
  margin: 0 auto;
  position: relative;
  margin-bottom: -.1rem;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_line span i{
  display: block;
  width: .18rem;
  height: .18rem;
  margin: 0 auto;
  background: #f5d77c;
  border-radius: 50%;
  border:.02rem #fff solid;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_img{
  text-align: center;
  width: 1rem;
  margin: 0 37%;
}
#indevelop .swiper-timeline .swiper-slide  .indevelop_img img{
  background: #fff;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 0 3px rgba(0,0,0,.12);
}
#indevelop .swiper-timeline .swiper-slide:nth-of-type(even) .indevelop_img{
  position: absolute;
  top: 0;
  text-align: center;
}
#indevelop .swiper-timeline .swiper-slide:nth-of-type(even) .indevelop_content{
  position: absolute;
  bottom: 0;
}
#indevelop .swiper-timeline .swiper-slide:nth-of-type(even) .indevelop_line{
  position: absolute;
  width: 100%;
  left: 0;
  top: 1.1rem;
}
#indevelop .swiper-timeline .swiper-button-next-timeline{
  background: url(../images/right1.png) no-repeat;
  top: 37%;
  right: 0;
}
#indevelop .swiper-timeline .swiper-button-prev-timeline{
  background: url(../images/left1.png) no-repeat;
  top: 37%;
  left: 0;
}
#indevelop .swiper-timeline .swiper-button-disabled{
  display: none;
}
#indevelop .swiper-timeline .swiper-slide:hover  .indevelop_line span{
  display: block;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  border:1px #39ae9a solid;
  margin: 0 auto;
  position: relative;
  margin-bottom: -.1rem;
}
#indevelop .swiper-timeline .swiper-slide:hover  .indevelop_line span i{
  display: block;
  width: .18rem;
  height: .18rem;
  margin: 0 auto;
  background: #39ae9a;
  border-radius: 50%;
  border:.02rem #fff solid;
}
@media only screen and (max-width: 768px) {
  #indevelop .incontent_title{
    color: #333;
    font-size: .32rem;
    font-weight: bold;
    padding: .75rem 0;
    text-align: center;
  }
  #indevelop .swiper-timeline .swiper-slide{
    height: 2.9rem;
    position: relative;
  }
  #indevelop .swiper-timeline .swiper-slide:nth-of-type(even) {
    margin-top: .87rem;
}
  #indevelop .swiper-timeline .swiper-slide:nth-of-type(even) .indevelop_line{
    position: absolute;
    width: 100%;
    left: 0;
    top: 1.13rem;
  }
  #indevelop .swiper-timeline .swiper-button-next-timeline{
    background: url(../images/right1.png) no-repeat;
    top: 37%;
    right: 0;
  }
  #indevelop .swiper-timeline .swiper-button-prev-timeline{
    background: url(../images/left1.png) no-repeat;
    top: 37%;
    left: 0;
  }
  #indevelop .swiper-timeline .swiper-slide:nth-of-type(even) .indevelop_content{
    bottom: -.9rem;
  }
  #indevelop .swiper-timeline .swiper-slide .indevelop_img{
    margin: 0 23%;
  }

}


/*incase*/
#incase{
  background: url(../images/index_31.png) top center no-repeat;
  width: 100%;
  height: 8.85rem;
  overflow: hidden;
  *zoom:1;
}
#incase .incontent_title{
  color: #333;
  font-size: .45rem;
  font-weight: bold;
  padding: .85rem 0;
  text-align: center;
}

#incase .incase_right .col-md-6 {
  margin-bottom: .3rem;
  text-align: center;
  overflow: hidden;
}
#incase .incase_right img{
  height: 231px;
  margin: 0 auto;
  display: inline-block;
}
#incase .incase_right .col-md-6 .incase_right_content{
  margin-top: -.4rem;
  background-image: linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.5));
  z-index: 9999;
  position: relative;
  height: .4rem;
  overflow: hidden;
}
#incase .incase_right .col-md-6 .incase_right_content a{
  text-decoration: none;
}
#incase .incase_right .col-md-6 .incase_right_content h5{
  font-size: .2rem;
  color: #fff;
  line-height: .4rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#incase .incase_right .col-md-6 .incase_right_content p{
  width: 80%;
  margin-left: 10%;
  color: #fff;
  font-size: .16rem;
  line-height: .3rem;
  height: .6rem;
  overflow: hidden;
}
#incase .incase_right .col-md-6:hover .incase_right_content{
  height: 1.2rem;
  margin-top: -1.2rem;
  transition: all .6s;
}
#incase .incase_right .col-md-6:hover a{
  text-decoration: none;
}
#incase #incase_left_title{
  background: rgba(255,255,255,.4);
  border-radius: .1rem;
  height: 494px;
}
#incase #incase_left_title h1{
  font-size: .26rem;
  color: #b0b0b0;
  font-weight: normal;
  margin-top: .6rem;
  margin-bottom: .1rem;
  margin-left: .2rem;
}
#incase #incase_left_title h2{
  font-size: .26rem;
  color: #b0b0b0;
  font-weight: bold;
  margin-left: .2rem;
}
#incase #incase_left_title h3{
  color: #333;
  margin-top: .2rem;
  margin-left: .2rem;

  font-size: .45rem;
  line-height: .6rem;
  font-weight: bold;
}
#incase #incase_left_title h3:after{
  display: block;
  content: '';
  width: .5rem;
  height: 2px;
  background: #39ae9a;
  margin-top: .2rem;
}
#incase #incase_left_title p{
  margin-left: .2rem;

    margin-top: .3rem;
    font-size: .14rem;
    color: #999999;
    line-height: .3rem;
}
@media only screen and (max-width: 768px) {
  #incase .incontent_title{
    color: #333;
    font-size: .32rem;
    font-weight: bold;
    padding: .85rem 0;
    text-align: center;
  }
  #incase{
    height: auto;
    background: #fafafa url(../images/index_31.png) bottom center no-repeat;
  }
  #incase_left_kong{
    display: none;
  }
  #incase #incase_left_title{
    height: 2rem!important;
  }
}
footer{
  background: #262626;
  width: 100%;
  padding-top: .62rem;
  overflow: hidden;
  *zoom:1;
}
footer dl{
  margin-bottom: .3rem;
}
footer dl dt a {
  font-size: .2rem;
  color: #fff;
  line-height: .5rem;
}
footer dl dd a{
  display: block;
  color: #a0a0a0;
  font-size: .14rem;
  line-height: .3rem;
}
footer dl dd,footer dl dd p {
  color: #a0a0a0;
  font-size: .14rem;
  line-height: .3rem;
}
footer p{
  text-align: center;
  color: #a0a0a0;
  font-size: .14rem;
  line-height: .3rem;
}
footer .copyright{
  margin-top: .3rem;
  border-top: 1px rgba(255,255,255,.1) solid;
  text-align: center;
  color: #8c8c8c;
  font-size: .12rem;
  line-height: .16rem;
  padding: .2rem 0;
}

/*ny_class*/
.ny_class{
  background: #f8f9f8;
  width: 100%;
  border-bottom: 1px #ccc solid;
  text-align: center;
}
.ny_class a{
  display: inline-block;
  line-height: .55rem;
  text-align: center;
  font-size: .16rem;
  color: #333;
  padding: 0 .2rem;
}
.ny_class sub{
  content: '';
  width: 1px;
  height: .16rem;
  background: #ccc;
  display: inline-block;
}
.ny_class sub:last-child{
  display: none;
}
.ny_class a:hover,.ny_class a.on{
  background: #36a390;
  color: #fff;
  text-decoration: none;
}
.about_title{
  margin-top: .6rem;
  margin-bottom: .2rem;
  padding-bottom: .2rem;
  border-bottom: 1px #ccc solid;
}
.about_title h2 sub{
  color: #333;
  font-size: .24rem;
  transform: scale(1,1);
  line-height: .5rem;
}
.about_title h2 span{
  font-size: .32rem;
  color: #36a390;
  text-transform: uppercase;
  transform: scale(1,2);
  display: block;
  float: left;
  margin-right: .3rem;
}
.about_content{
  margin-top: .3rem;
  font-size: 16px;
  color: #777777;
  line-height: .3rem;
}
.about_silog h3{
  font-size: .3rem;
  color: #999;
  margin-bottom: .1rem;
  letter-spacing: .1rem;
}
.about_silog h4{
  font-size: .43rem;
  color: #cfcfcf;
  letter-spacing: .1rem;
  font-weight: 400;
}
.about_silog_content{
  color: #666;
  font-size: .14rem;
  line-height: .25rem;
}
.about_silog_content p{
  margin-top: .1rem;
  text-indent: .24rem;
}
.about_content{
  margin-bottom: .80rem;
}

/*culture_title*/
#nyculture{
  margin: .5rem 0;
  width: 100%;
  overflow: hidden;
}
.culture_title{
  margin: .75rem 0;
  font-size: .3rem;
  line-height: .44rem;
  color: #333;
  text-align: center;
}
.culture_title:before{
  content: '|';
  color: #36a390;
  margin-right: .2rem;
}
.culture_title:after{
  content: '|';
  color: #36a390;
  margin-left: .2rem;
}
.culture_list{
  text-align: center;
  padding: .4rem;

}
.culture_list i{
  display: block;
  width: 1.44rem;
  height: 1.44rem;
  margin: 0 auto;
  border:1px #ccc solid;
  border-radius: 50%;
}
.culture_list h2{
  color: #333;
  font-size: .18rem;
  line-height: .4rem;
}
.culture_list h5{
  color: #666;
  font-size: .16rem;
  line-height: .3rem;
}
.culture_list p{
  width: 80%;
  height: .5rem;
  color: #36a390;
  font-size: .16rem;
  margin: .1rem 10%;
  line-height: .25rem;
  font-weight: bold;
}
.culture_list:hover{
  background: #f8f8f8;
  transition: all .3s;
}
.culture_list:hover i{
  background: #fff;
}


/*lead*/
.nylead_list{
  margin-bottom: .3rem;
}
.nylead_list .thumbnail{
  margin-bottom: .1rem;
  overflow: hidden;
}
.nylead_list a{
  display: block;
  text-align: center;
  font-size: .14rem;
  color: #333;
  line-height: .22rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nylead_list .thumbnail a{
  display: block;
  height: 168px;
  text-align: center;
  font-size: .14rem;
  color: #333;
  line-height: .22rem;
  overflow: hidden;
}

.nylead_list:hover a{
  color: #36a390;
  text-decoration: none;
}
.nylead_list img{
  /*width: 100%;*/
  height: 100%!important;
  transition: all .3s;
}
.nylead_list:hover img{
  transform: scale(1.1);
}
@media(max-width: 760px){
  .nylead_list img{
    width: 100%;
    height: auto!important;
    transition: all .3s;
  }
}


/*social*/
.social_title{
  font-size: .25rem;
  margin: .4rem 0;
}
.nyhonor_content{
  background: #fff;
}
.nyhonor_content ul{
  width: 100%;
  padding: 4%;
}
.nyhonor_content ul li {
  padding: .15rem 0 .15rem 2%;
  width: 100%;
  background: #fff;
}
.nyhonor_content ul li:nth-of-type(odd){
  background: #f6f6f6;
}
.nyhonor_content ul li a {
  font-size: .14rem;
  color: #333;
  line-height: .2rem;
}
.nyhonor_content ul li a i{
  display: block;
  background: url(../images/honor.png);
  width: .17rem;
  height: .2rem;
  float: left;
  margin-right: .1rem;
}
.nyhonor_content ul li:nth-of-type(odd):hover{
   background: #fff;
   transition: all .3s;
}
.nyhonor_content ul li:nth-of-type(even):hover{
   background: #f6f6f6;
   transition: all .3s;
}
.nyhonor_content ul li:hover a{
  color: #36a390;
  text-decoration: none;
}
.nyhonor{
  margin: .5rem 0;
}
.pages{
  margin: .5rem 0;
  text-align: center;
}
.pages a{
  display: inline-block;
  text-align: center;
  width: .3rem;
  line-height: .28rem;
  text-align: center;
  border: 1px #ccc solid;
  border-radius: .04rem;
  color: #999;
  font-size: .14rem;
  margin: 0 .05rem;
}
.pages a.currPage{
  background: #36a390;
  border:1px #36a390 solid;
  color: #fff;
}
.pages a:hover{
  color: #36a390;
  border:1px #36a390 solid;
  text-decoration: none;
}


.baojia_search form{
  width: 40%;
  height: .6rem;
  border:1px #ccc solid;
  border-radius: .1rem;
  text-align: left; 
  margin: .5rem auto;
  background: #fff;
}
.baojia_search form input{
  font-size: .14rem;
  width: 83%;
  border:0;
  line-height:.55rem;
  border-radius: .1rem 0 0 .1rem;
  float: left;
  padding-left: 2%;
}
.baojia_search form button{
  background: none;
  border:0;
  font-size: .3rem;
  color: #36a390;
  height: .4rem;
  width: 15%;
  float: left;
  border-left: 1px #ccc solid;
  margin-top: .1rem;
}
.baojia_content_list li {
  width: 100%;
  padding: .15rem;
  overflow: hidden;
  *zoom:1;
}
.baojia_content_list li:nth-of-type(odd){
  background: #f6f6f6;
}
.baojia_content_list li a{
  font-size: .14rem;
  color: #333;
}
.baojia_content_list li a i:nth-of-type(1){
  display: block;
  width: .19rem;
  height: .15rem;
  float: left;
  background: url(../images/icon_new.png);
  margin-right: .1rem;
  margin-top: .04rem;
}
.baojia_content_list li a i:nth-of-type(2){
  display: block;
  width: .24rem;
  height: .24rem;
  float: right;
  background: url(../images/pdf.png);
}
.baojia_content_list li a span{
  display: block;
  float: left;
  width: 87%;
  line-height: .2rem;
}
.baojia_content_list li:hover a{
  color: #36a390;
} 
.baojia_content{
  background: #fff;
  padding: .15rem;
}
#musicContent{
  margin-top: .2rem; 
}
.music_content_list{
  margin-top: .4rem;
}
.music_content_list p{
  width: 90%;
  margin-left: 5%;
  font-size: .14rem;
  color: #333;
  line-height: .3rem;
  margin-bottom: .2rem;
}
.music_kongjian audio{
  width: 100%;
  border-bottom: 1px #ccc dashed;
  margin-top: .4rem;
  padding-bottom: .2rem;
}
.music_kongjian_geci{
   text-align: center;
   line-height: .3rem;
   margin-top: .3rem;
}
.now_time{
  opacity: 0;
}

/*nyyewu*/
.nyyewu{
  margin: .5rem 0;
}
.page-header{
  font-size: .16rem;
  color: #666;
  line-height: .35rem;
  border-bottom: 0;
}
.nyyewu .nyyewu_list dl{
  background: #ecf6ec;
}
.nyyewu .nyyewu_list dl dt{
  text-align: center;
  padding: .5rem 0;
}
.nyyewu .nyyewu_list dl dt span{
  width: 1rem;
  height: 1rem;
  display: block;
  border:2px #ccc solid;
  border-radius: 50%;
  margin: 0 auto;
}
.nyyewu .nyyewu_list dl dt h2{
  font-size: .16rem;
  color: #333;
  margin: .3rem 0 .1rem;
}
.nyyewu .nyyewu_list dl dt p{
  font-size: .14rem;
  color: #666;
  text-transform: uppercase;
}

.nyyewu .nyyewu_list:nth-of-type(1) dl dt span{
  background: url(../images/yewu/yewu_icon1.png) center no-repeat;
}
.nyyewu .nyyewu_list:nth-of-type(2) dl dt span{
  background: url(../images/yewu/yewu_icon2.png) center no-repeat;
}
.nyyewu .nyyewu_list:nth-of-type(3) dl dt span{
  background: url(../images/yewu/yewu_icon3.png) center no-repeat;
}
.nyyewu .nyyewu_list:nth-of-type(4) dl dt span{
  background: url(../images/yewu/yewu_icon4.png) center no-repeat;
}
.nyyewu .nyyewu_list:hover dl{
  background: #36a390;
  transition: all .3s;
}
.nyyewu .nyyewu_list:hover:nth-of-type(1) dl dt span{
  background: url(../images/yewu/yewu_icon1_hover.png) center no-repeat;
  transition: all .3s;
}
.nyyewu .nyyewu_list:hover:nth-of-type(2) dl dt span{
  background: url(../images/yewu/yewu_icon2_hover.png) center no-repeat;
  transition: all .3s;
}
.nyyewu .nyyewu_list:hover:nth-of-type(3) dl dt span{
  background: url(../images/yewu/yewu_icon3_hover.png) center no-repeat;
  transition: all .3s;
}
.nyyewu .nyyewu_list:hover:nth-of-type(4) dl dt span{
  background: url(../images/yewu/yewu_icon4_hover.png) center no-repeat;
  transition: all .3s;
}
.nyyewu .nyyewu_list:hover *{
  color: #fff;
}
.nyyewu .nyyewu_list:hover dl dt span{
  border:2px #fff solid;
}
.nyyewu .nyyewu_list:hover a{
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .nyyewu .nyyewu_list {
    margin-bottom: .3rem;
  }
  .nyyewu .nyyewu_list dl dt{
    text-align: center;
    padding: .2rem 0;
  }
  .nyyewu .nyyewu_list dl dt span{
    width: .7rem;
    height: .7rem;
    display: block;
    border:1px #ccc solid;
    border-radius: 50%;
    margin: 0 auto;
    
  }
  .nyyewu .nyyewu_list dl dt h2{
    font-size: .14rem;
    color: #333;
    margin: .1rem 0 .1rem;
  }
  .nyyewu .nyyewu_list dl dt p{
    font-size: .12rem; 
    height: .24rem;
  }
  .nyyewu .nyyewu_list:nth-of-type(1) dl dt span{
    background: url(../images/yewu/yewu_icon1.png) center no-repeat;background-size: 60%;
  }
  .nyyewu .nyyewu_list:nth-of-type(2) dl dt span{
    background: url(../images/yewu/yewu_icon2.png) center no-repeat;background-size: 60%;
  }
  .nyyewu .nyyewu_list:nth-of-type(3) dl dt span{
    background: url(../images/yewu/yewu_icon3.png) center no-repeat;background-size: 60%;
  }
  .nyyewu .nyyewu_list:nth-of-type(4) dl dt span{
    background: url(../images/yewu/yewu_icon4.png) center no-repeat;background-size: 60%;
  }
}

.nyinfo_content{
  background: #fff;
}
.nyinfo_content ul{
  width: 100%;
  padding: 4%;
}
.nyinfo_content ul li {
  padding: .15rem 0 .15rem 2%;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.nyinfo_content ul li:nth-of-type(odd){
  background: #f6f6f6;
}
.nyinfo_content ul li a {
  font-size: .14rem;
  color: #333;
  line-height: .2rem;
}
.nyinfo_content ul li a i{
  display: block;
  background: url(../images/icon_new.png);
  width: .19rem;
  height: .15rem;
  float: left;
  margin-top: .03rem;
  margin-right: .1rem;
}
.nyinfo_content ul li a span{
  float: right;
  margin-right: .1rem;
}
.nyinfo_content ul li:nth-of-type(odd):hover{
   background: #fff;
   transition: all .3s;
}
.nyinfo_content ul li:nth-of-type(even):hover{
   background: #f6f6f6;
   transition: all .3s;
}
.nyinfo_content ul li:hover a{
  color: #36a390;
  text-decoration: none;
}
.nyinfo{
  margin: .5rem 0;
}

.join_content{
  line-height: .3rem;
  overflow: hidden;
}
.join_content_bg{
  width: 5.15rem;
  height: 5.12rem;
  background: url(../images/join/bg.png); 
  padding-top: 1rem;
  padding-left: 1rem;  
  padding-bottom: .4rem;  
  font-size: 20px;
  color: #333;
  line-height: .4rem;
  float: left;
}
.join_content_img{
  width: 5.45rem;
  height: 3.83rem;
  float: left;
  margin-top: .8rem;
}
#nyjob{
  width: 100%;
  margin: .6rem 0;
  overflow: hidden;
  *zoom:1;
}
.nyjob_title{
  font-size: .35rem;
  color: #545353; 
  text-align: center;
  margin: .3rem 0;
}

#nyjob .panel-title a{
  display: block;
  height: .8rem;
  background: #f2f2f2;
  overflow: hidden; 
}
#nyjob .panel-title a.collapsed{
  background: #f2f2f2;
}
#nyjob .panel-title a[aria-expanded="true"]{
  background: #3fb099;
}
#nyjob .panel-title a[aria-expanded="true"] *{
  color: #fff;
}
.panel-body-title{
  color: #333333;
  font-size: 16px;
  line-height: 40px;
}
.panel-body-content{
  font-size: .14rem;
  line-height: .3rem;
}
#nyjob .panel-heading{
  
  padding: 0;
}
#nyjob .panel,#nyjob .panel-heading,#nyjob .panel-body{
  border:0;
  border-radius: 0;
}
#nyjob .panel{
  box-shadow: none;
}
.nyjob_time{
  font-size: .24rem;
  transform: scale(1,2);
  margin-top: .3rem;
  color: #666;
}
.nyjob_titles h2{
  color: #333;
  font-size: .16rem;
  line-height: .3rem;
  margin-top: .15rem;
}
.nyjob_titles p{
  color: #8b8b8b;
  font-size: .14rem;
  line-height: .2rem;
}
.nyjob_right{
  font-size: .3rem;
  margin-top: .2rem;
}
.shoujian{
  text-align: center;
  color: #666666;
  font-size: .25rem;
  line-height: .5rem;
  margin-top: .6rem;
}

@media only screen and (max-width: 768px) {
  .join_content_bg{
    width: 100%;
    height: auto;
    padding: .7rem .2rem;
    background: url(../images/join/bg.png); 
    background-size: 100% 100%;
    font-size: .18rem;
    line-height: .3rem;
  }
  .join_content_img{
    width: 100%;
    height: auto;
  }
  .nyjob_time{
    font-size: .14rem;
    padding-left: 0;
  }
  .baojia_search form{
    width:90%;
  }
}
#nyyanfa{
  background: url(../images/youshi/ys_12.png) top center no-repeat;
  width: 100%;
  height: 2.68rem;
  overflow: hidden;
  font-size: .16rem;
  color: #777777;
  line-height: .35rem;
}
#nyyanfa .nyyanfa_content{
  background: rgba(255,255,255,.6);
  height: 2rem;
  margin-top: .68rem;
  padding: 4%;
}

#nywebmap{
  background: #f0f5f1;
  width: 100%;
  padding-bottom: .5rem;
  overflow: hidden;
}
.nywebmap_content{
  background: #Fff;
}
.nywebmap_content_info{
  font-size: .16rem;
  color: #777777;
  line-height: .35rem;
  padding: 4%;
}
.nywebmap_content_info p{
  margin-bottom: .4rem;
}
.nywebmap_content_map{
  background: url(../images/youshi/ys_15.png) top center no-repeat;
  width: 8.67rem;
  height: 7.30rem;
  margin: 0 auto;
  position: relative;
}

.nywebmap_content_map .point {
  font-size: .14rem;
  color: #666666;
  position: absolute;
  display: block;
  width: 70px;
  height: 25px;
}
.nywebmap_content_map .point i{
  color: #36a390;
  font-size: .18rem;
}
.point-hubei{
  top: 4.55rem;
  left: 5.66rem;
}
.point-anhui{
  top: 4.47rem;
  left: 6.7rem;
}
.point-zhejiang{
  top: 4.65rem;
  left: 7.2rem;
}
.point-jiangxi{
  top: 5.1rem;
  left: 6.58rem;
}
.point-hunan{
  top: 5.3rem;
  left: 6.1rem;
}
.point-guizhou{
  top: 5.6rem;
  left: 5.24rem;
}

.point-guangxi{
  top: 6.1rem;
  left: 6.1rem;
}
.nywebmap_content_map_content{
  width: 3rem;
  background: #36a390;
  
  position: absolute;
  top: 2rem;
  left: -1.2rem;

}
.nywebmap_content_map_content_info{
  display: none;
  padding: .4rem;
}
.nywebmap_content_map_content_info h2{
  font-size: .24rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-bottom: 1px #fff solid;
  padding-bottom: .1rem;
}
.nywebmap_content_map_content_info p{
  font-size: .14rem;
  color: #fff;
  line-height: .3rem;
  margin-top: .2rem;
}
.nyinfodetail{
  padding: 4% 0;
}
.nyinfodetail .page_btn{
  border:1px #ccc solid;
  border-radius: 10px;
  display: block;
  line-height: .4rem;
  padding: 0 .2rem; 
  color: #333;
  margin: .4rem 0;  
}
.nyinfodetail .page_btn a{
  color: #333;
}
.nyinfodetail .page_btn:hover{
  background: #36a390;
  border: 1px #36a390 solid;
  color: #fff;
}
.nyinfodetail .page_btn:hover *{
  color: #fff;
}
.nyinfodetail_title{
  padding: 2%;
  text-align: center;
  border-bottom: 1px #cccc solid;
  padding-bottom: .2rem;
  margin-bottom: .2rem
}
.nyinfodetail_title h2{
  line-height: .6rem;
  font-size: .26rem;
}
.nyinfodetail_title p{
  color: #666;
  line-height: .4rem;
}
.nyinfodetail_content{
  line-height: .3rem;
  font-size: .14rem;
  padding: 1% 4%;
}
.ny_oneinfo a{
  font-size: .26rem;
  color: #36a390;
  line-height:.6rem;
}
.ny_oneinfo time{
  font-size: .14rem;
  color: #969696;
  margin:.2rem 0;
  display: block;
}
.ny_oneinfo p{
  font-size: .14rem;
  color: #333;
  line-height:.3rem;
}

.contact_left{
  background: #eaeaea;
  padding: 4%;
  line-height: .2rem;
  font-size: .14rem;
  color: #666;
}
.contact_left h2{
  font-size: .26rem;
  line-height:.6rem;
  border-bottom: 1px #ccc solid;
}
.contact_left p{
  padding: .1rem 0;
}
.contact_left hr{
  border-color: #ccc;
}
.contact_right{
  background: #fff;
  padding: 4%;
}
.tour_list{
  float: left;
  text-align: center;
  padding: 30px 0px;
}
.tour_list:nth-of-type(odd){
  background: #f8f8f8;
}
.tour_list a{
  text-decoration: none;
}
.tour_list h2{
  color: #333333;
  font-size: .2rem;
  line-height: .26rem;
  margin-top: .2rem;
}
.tour_list p{
  color: #b0b0b0;
  font-size: .14rem;
  line-height: .26rem;
  text-transform: uppercase;
}
.tour_list:hover h2,.tour_list:hover p{
  color: #36a390;
}
.content_title{
  text-align: center;
}
.content_title h2{
  font-size: .26rem;
}
.biaoti_title{
  font-size: .20rem;
  color: #36a390;
  text-align: center;
  line-height: .25rem;
  margin: 40px auto;
}
.content_title h2:after{
  content: '';
  width: 30px;
  height: 1px;
  display: block;
  background: #999;
  margin: 10px auto;
}
.content_title p{
  font-size: .14rem;
  color: #999999;
  text-transform: uppercase;
}
.ny_youshi{
  margin-top: 40px;

}
.swiper-button-next-honor,.swiper-button-next-yanfa{
  background: url(../images/inst/sright.png);
  width: 47px;
  height: 47px;
}
.swiper-button-prev-honor,.swiper-button-prev-yanfa{
  background: url(../images/inst/sleft.png);
  width: 47px;
  height: 47px;
}

#nylingyu,#nykejichengguo{
  margin-top: 60px;
}
.four_lingyu{
  margin: 40px 0;
}
.gutifeiwu h2{
  font-size: 30px;
  font-weight: bold;
  color: #6dc169;
  text-align: center;
  margin-bottom: 20px;
}
.gutifeiwu p{
  width: 80%;
  margin-left: 10%;
  font-size: 14px;
  color: #333;
  line-height: 26px;
  text-indent: 24px;
}
.five_keji{
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}
.five_keji .five_keji_img{
  width: 18%;
  margin: 1%;
  float: left;
}

#nyshifan{
  margin: 60px 0;
}
.two_shifan{
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}
.two_shifan .two_shifan_img{
  width: 48%;
  margin: 1%;
  float: left;
}
.shifan_info{
  width: 100%;
   margin: 20px 0;
  overflow: hidden;
}
.shifan_info_content{
  padding: 40px;
  font-size: 18px;
  line-height: 35px;

}
.ny_img{
  text-align: center;
  margin-bottom: 40px;
}
.ny_img img{
  max-width: 100%;
  margin-top: .4rem
}
@media only screen and (max-width: 768px) {
  .nywebmap_content_map{
    display: none;
  }
  .tour_list{
    width: 100%;
    float: left;
    text-align: center;
    padding: 30px 0px;
  }
  .about_title h2 span{
        transform: scale(1);
        display: block;
        width: 100%;
  }
  .nylead_list .thumbnail a{
    height: auto!important;
  }
}
.wlcase_list{
  margin-bottom: 30px;
}
.wlcase_list_info a{
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .16rem;
  color: #333333;
  line-height: .4rem;
}
.wlcase_list_info a:after{
  content:'';
  display: block;
  width: .6rem;
  height: .02rem;
  background: #36a390;
}
.wlcase_list_info p{
  font-size: .14rem;
  color: #666;
  line-height: .23rem;
  margin-top: .2rem;
}
.ny_three_class{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.ny_three_class a{
  display: inline-block;
  padding: 10px 30px;
  border:1px #ccc solid;
  color: #333;
}
.ny_three_class a:hover,.ny_three_class a.on{
  color: #36a390
}


























